home *** CD-ROM | disk | FTP | other *** search
/ Freelog 121 / FreelogMagazineJuilletAout2014-No121.iso / Outils / Adobe-Air / adobe-air_13.exe / [0] / setup.swf / scripts / mx / events / ScrollEventDetail.as < prev    next >
Text File  |  2014-03-27  |  1KB  |  47 lines

  1. package mx.events
  2. {
  3.    import mx.core.mx_internal;
  4.    
  5.    use namespace mx_internal;
  6.    
  7.    public final class ScrollEventDetail
  8.    {
  9.       
  10.       public static const LINE_UP:String = "lineUp";
  11.       
  12.       public static const AT_RIGHT:String = "atRight";
  13.       
  14.       public static const PAGE_UP:String = "pageUp";
  15.       
  16.       public static const LINE_DOWN:String = "lineDown";
  17.       
  18.       public static const PAGE_DOWN:String = "pageDown";
  19.       
  20.       public static const AT_LEFT:String = "atLeft";
  21.       
  22.       public static const PAGE_RIGHT:String = "pageRight";
  23.       
  24.       public static const THUMB_POSITION:String = "thumbPosition";
  25.       
  26.       public static const AT_TOP:String = "atTop";
  27.       
  28.       public static const LINE_LEFT:String = "lineLeft";
  29.       
  30.       public static const AT_BOTTOM:String = "atBottom";
  31.       
  32.       public static const LINE_RIGHT:String = "lineRight";
  33.       
  34.       public static const THUMB_TRACK:String = "thumbTrack";
  35.       
  36.       public static const PAGE_LEFT:String = "pageLeft";
  37.       
  38.       mx_internal static const VERSION:String = "3.0.0.0";
  39.        
  40.       
  41.       public function ScrollEventDetail()
  42.       {
  43.          super();
  44.       }
  45.    }
  46. }
  47.